home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / compulse.swf / scripts / DefineSprite_54_starX / frame_1 / DoAction.as
Encoding:
Text File  |  2013-04-24  |  230 b   |  15 lines

  1. xVel = random(10) - 5;
  2. yVel = random(10) - 5;
  3. grav = 0.3;
  4. onEnterFrame = function()
  5. {
  6.    yVel += grav;
  7.    _X = _X + xVel;
  8.    _Y = _Y + yVel;
  9.    _alpha--;
  10.    if(_alpha <= 0)
  11.    {
  12.       this.removeMovieClip();
  13.    }
  14. };
  15.